home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / misc / emu / arosdev.lha / AROS / rom / exec / exec_intern.h < prev    next >
C/C++ Source or Header  |  1997-01-09  |  1KB  |  50 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: exec_intern.h,v 1.4 1997/01/01 03:46:18 ldp Exp $
  4.     $Log: exec_intern.h,v $
  5.     Revision 1.4  1997/01/01 03:46:18  ldp
  6.     Committed Amiga native (support) code
  7.  
  8.     Changed clib to proto
  9.  
  10.     Revision 1.3  1996/12/09 10:54:49  aros
  11.     Added (almost empty) versions for all missing functions. If they are called,
  12.     they just print "Functions %s not implemented" and return an error if
  13.     possible.
  14.  
  15.     Revision 1.2  1996/08/01 17:41:27  digulla
  16.     Added standard header for all files
  17.  
  18.     Desc:
  19.     Lang:
  20. */
  21. #ifndef __EXEC_INTERN_H__
  22. #define __EXEC_INTERN_H__
  23.  
  24. /* This is a short file that contains a few things every Exec function
  25.     needs */
  26.  
  27. #ifndef AROS_OPTIONS_H
  28. #   include <aros/options.h>
  29. #endif
  30. #ifndef AROS_SYSTEM_H
  31. #   include <aros/system.h>
  32. #endif
  33. #ifndef AROS_LIBCALL_H
  34. #   include <aros/libcall.h>
  35. #endif
  36. #ifndef EXEC_EXECBASE_H
  37. #   include <exec/execbase.h>
  38. #endif
  39. #ifndef PROTO_EXEC_H
  40. #   include <proto/exec.h>
  41. #endif
  42.  
  43. #if UseLVOs
  44. extern void __AROS_InitExecBase (void);
  45. #endif
  46.  
  47. void aros_print_not_implemented (char * name);
  48.  
  49. #endif /* __EXEC_INTERN_H__ */
  50.